home *** CD-ROM | disk | FTP | other *** search
/ CICA 1995 August / CICA - The Ultimate Collection of Shareware for Windows (Disc 2) (August 1995).iso / disc2 / programr / vbasic / generic.exe / GENER.DEF < prev    next >
Text File  |  1993-03-19  |  954b  |  29 lines

  1. ;----------------------------------------------------------------------------
  2. ;           Copyright (C) 1993, Microsoft Corporation
  3. ;
  4. ; You have a royalty-free right to use, modify, reproduce and distribute
  5. ; the Sample Custom Control Files (and/or any modified version) in any way
  6. ; you find useful, provided that you agree that Microsoft has no warranty,
  7. ; obligation or liability for any Custom Control File.
  8. ;----------------------------------------------------------------------------
  9. ; generic.def - module definition file for GENERIC.VBX custom control
  10. ;----------------------------------------------------------------------------
  11.  
  12. LIBRARY     GENERIC
  13. EXETYPE         WINDOWS
  14. DESCRIPTION    'Visual Basic Generic Custom Control'
  15.  
  16. CODE        MOVEABLE
  17. DATA        MOVEABLE SINGLE
  18.  
  19. HEAPSIZE    2048
  20.  
  21. EXPORTS
  22.     WEP    @1    RESIDENTNAME
  23.     GenStrlen
  24.  
  25. SEGMENTS
  26.     WEP_TEXT FIXED
  27.  
  28. ;----------------------------------------------------------------------------
  29.